home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Apple Reference & Presen…rary 8 (Internal Edition)
/
Apple R&P Lib Internal v8.0.iso
/
3-Presentations
/
Service⁄Support⁄Training
/
Self-Paced Training
/
Apple Scanner Training
/
Installation
/
background_2974.txt
< prev
next >
Wrap
Text File
|
1988-07-14
|
5KB
|
215 lines
-- background: 2974 from stack: in
-- bmap block id: 3393
-- flags: 0000
-- background id: 0
-- name: Setting Up Scanner
----- HyperTalk script -----
on openStack
set highlight of background button "Installation" to true
end openStack
on closeStack
set highlight of background button "Installation" to false
end closeStack
hide message box
hide menuBar
-- part 8 (button)
-- low flags: 00
-- high flags: 0000
-- rect: left=220 top=308 right=342 bottom=263
-- title width / last selected line: 0
-- icon id / first selected line: 21700 / 21700
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name:
----- HyperTalk script -----
on mouseUp
visual effect zoom open
go to stack "Apple Scanner"
end mouseUp
-- part 11 (button)
-- low flags: 00
-- high flags: 8004
-- rect: left=263 top=317 right=338 bottom=366
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: Using
----- HyperTalk script -----
on mouseUp
visual effect zoom open
go to stack "Using"
set highlight of background button "Setup" to false
set highlight of background button "Installation" to false
set highlight of background button "Troubleshooting" to false
set highlight of background button "Using" to true
end mouseUp
-- part 12 (button)
-- low flags: 00
-- high flags: 8004
-- rect: left=376 top=317 right=338 bottom=494
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: Troubleshooting
----- HyperTalk script -----
on mouseUp
visual effect zoom open
go to stack "Troubleshooting"
set highlight of background button "Setup" to false
set highlight of background button "Installation" to false
set highlight of background button "Using" to false
set highlight of background button "Troubleshooting" to true
end mouseUp
-- part 15 (button)
-- low flags: 00
-- high flags: A004
-- rect: left=7 top=317 right=338 bottom=110
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: Setup
----- HyperTalk script -----
on mouseUp
visual effect zoom open
go to stack "Set-Up"
set highlight of background button "Installation" to false
set highlight of background button "Using" to false
set highlight of background button "Troubleshooting" to false
set highlight of background button "Setup" to true
end mouseUp
-- part 17 (button)
-- low flags: 00
-- high flags: E004
-- rect: left=119 top=317 right=338 bottom=222
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: Installation
----- HyperTalk script -----
on mouseUp
visual effect zoom open
go to stack "Installation"
set highlight of background button "Setup" to false
set highlight of background button "Using" to false
set highlight of background button "Troubleshooting" to false
set highlight of background button "Installation" to true
end mouseUp
-- part 19 (button)
-- low flags: 00
-- high flags: 0001
-- rect: left=414 top=1 right=40 bottom=455
-- title width / last selected line: 0
-- icon id / first selected line: 1008 / 1008
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name:
----- HyperTalk script -----
on mouseUp
answer "Print this card?" with "Yes" or "Cancel"
if it is "Yes" then
doMenu "Print Card"
end if
if it is "Cancel" then
put "Cancel" into it
end if
end mouseUp
-- part 20 (button)
-- low flags: 00
-- high flags: 0001
-- rect: left=454 top=1 right=40 bottom=494
-- title width / last selected line: 0
-- icon id / first selected line: 1004 / 1004
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name:
----- HyperTalk script -----
on mouseUp
play harpsichord a4
global search
answer "Type of Glossary search?" with "Browse" or "Automatic" or "Cancel"
if it is "Browse" then
visual wipe up slowly
go to card "Glossary" of stack "Glossary"
end if
if it is "Automatic" then
ask "Search for..."
put it into search
if search is empty then
exit mouseUp
else
visual wipe up slowly
put "find search" into message box
hide message
go to card "Glossary" of stack "Glossary"
find word search in field "Text"
if the result is "not found" then
answer "Word not found." with "OK"
exit mouseUp
else
show card field id 13
wait 4 seconds
hide card field id 13
end if
end if
end if
end mouseUp